home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / TextAlignmentPropertyEditor.java < prev    next >
Text File  |  1998-10-27  |  713b  |  27 lines

  1. package com.symantec.itools.swing;
  2.  
  3. import com.symantec.itools.beans.*;
  4.  
  5. public final class TextAlignmentPropertyEditor
  6.     extends TaggedIntPropertyEditor
  7. {
  8.     private static TaggedInt[] m_Tags = null;
  9.  
  10.     // When the class loads, load the tags
  11.  
  12.     static
  13.     {
  14.         m_Tags = new TaggedInt[]
  15.         {
  16.             new TaggedInt("LEFT", com.sun.java.swing.SwingConstants.LEFT, "com.sun.java.swing.SwingConstants.LEFT"),
  17.             new TaggedInt("CENTER", com.sun.java.swing.SwingConstants.CENTER, "com.sun.java.swing.SwingConstants.CENTER"),
  18.             new TaggedInt("RIGHT", com.sun.java.swing.SwingConstants.RIGHT, "com.sun.java.swing.SwingConstants.RIGHT"),
  19.         };
  20.     }
  21.  
  22.     public TextAlignmentPropertyEditor()
  23.     {
  24.         super(m_Tags);
  25.     }
  26. }
  27.